/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background Video */
#bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}

/* Main Container */
.event-container {
    display: flex;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Left Side - Pamphlet */
.event-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pamphlet {
    width: 80%;
    max-width: 400px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.pamphlet:hover {
    transform: scale(1.05);
}

/* Right Side - Description Panel */
.event-right {
    flex: 1;
    background: rgba(255, 255, 255, 0.85);
    color: black;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 10px;
    margin: 40px;
}

/* Full Screen Image Viewer */
.full-image-view {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease;
}

.full-image-view img {
    max-width: 90%;
    max-height: 90%;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background: #fefdfd;
}

.glow-on-hover {
    width: 220px;
    height: 50px;
    border: none;
    outline: none;
    color: #ffd700;
    background: black;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

.glow-on-hover:before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left:-2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
}

.glow-on-hover:active {
    color: #000
}

.glow-on-hover:active:after {
    background: transparent;
}

.glow-on-hover:hover:before {
    opacity: 1;
}

.glow-on-hover:after {
    z-index: -1;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #111;
    left: 0;
    top: 0;
    border-radius: 10px;
}

@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}
/* ============================ */
/* ✅ PAMPHLET DOWNLOAD GRID   */
/* ============================ */
/* Pamphlet grid layout */
.pamphlet-grid {
  display: flex;
  justify-content: center;   /* center horizontally */
  gap: 20px;                 /* space between pamphlets */
  margin-top: 20px;
  flex-wrap: wrap;           /* allows wrapping on smaller screens */
}
.vip-title {
  font-size: 36px;        /* Bigger text */
  font-weight: 800;       /* Very bold */
  text-align: center;     /* Center horizontally */
  color: #ffd700;         /* Gold */
  background: #222;       /* Dark background for contrast */
  padding: 15px 25px;     /* Space inside the banner */
  border-radius: 10px;    /* Rounded edges */
  margin: 30px auto;      /* Space around + auto center */
  display: inline-block;  /* Shrinks background to text */
  box-shadow: 0 4px 12px rgba(0,0,0,0.4); /* Glow/shadow */
  letter-spacing: 2px;    /* More spacing between letters */
  text-transform: uppercase; /* ALL CAPS */
}


/* Individual pamphlet cards */
.pamphlet-card {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
  max-width: 250px;          /* control card width */
}

.pamphlet-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 10px;
}

.pamphlet-card:hover {
  transform: scale(1.05);
}


